Description : Usage of `@import` directive in SASS.
Answer :
The `@import` directive inSASS is used to include the contents of one stylesheet into another. For example,`@import 'styles';` will include the styles from`styles.scss` into the current file. This helps in modularizing your CSS by separating it into different files and then importing them into a main stylesheet.